home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000379_news@columbia.edu_Fri Feb 3 00:32:31 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06700
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Feb 1995 19:32:41 -0500
  3. Received: by apakabar.cc.columbia.edu id AA05196
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Feb 1995 19:32:40 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: CMS Kermit
  9. Date: 3 Feb 1995 00:32:31 GMT
  10. Organization: Columbia University
  11. Lines: 28
  12. Message-Id: <3grtiv$51p@apakabar.cc.columbia.edu>
  13. References: <17337A963.1CMC3466@ibm.mtsac.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <17337A963.1CMC3466@ibm.mtsac.edu>,
  18. Curtiss Cicco <1CMC3466@ibm.mtsac.edu> wrote:
  19. >Are there any hardware or software limitations that would
  20. >cause an average receive packet-size of 1915 bytes when it is set
  21. >at 9024? That is from CMS kermit to MSK 3.14
  22. Yes.
  23.  
  24. The packet length is determined as follows:
  25.  
  26.  1. The file receiver tells the file sender the longest packet it
  27.     is prepared to receive.  There is a default, and then there is
  28.     a command to let the user change the default.  The default is
  29.     normally 94, and the command is normally "set receive
  30.     packet-length".
  31.  
  32.  2. The file sender has a maximum size that it can send.  The size
  33.     that is actually used by the sender is the smaller of its own
  34.     maximum and the declared maximum of the receiver.
  35.  
  36. In the case of IBM mainframe Kermit, the maximum length it can send
  37. generally depends on the communication method.  If it is going through
  38. a 3270 protocol converter such as a Series/1 or 7171, the maximum length
  39. packet is somewhere around the 3270 screen size, e.g. 24 x 80 = 1920,
  40. give or take a few bytes.  This is a limitation of the 3270 emulation
  41. box and/or software, and has nothing to do with Kermit.
  42.     
  43. - Frank